/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/**
 *  clearfixc For modern browsers
 */
.cf:before,
.cf:after {
    content:"";
    display:table;
}
.cf:after {
    clear:both;
}
/**
 * For IE 6/7 (trigger hasLayout)
 */
.cf {
    *zoom:1;
}
.first { margin-left: 0px; } 
.center-align { text-align: center; }

html,body
{
	padding: 0;
	margin: 0;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

@media only screen and (min-width: 1024px){
	.content{
		font-size: 100%;
	}
}

@media only screen and (min-width: 640px) and (max-width: 1024px){
	.content{
		font-size: 92%;
	}
}

@media only screen and (max-width: 640px){
	.content{
		font-size: 85%;
	}
}

/*
body{
	font-size: 60%;
}
*/

/*** STANDARDS ***/
div.pagesection
{
	width: 100%;
	padding: 40px 0px;
	font-family: 'Lato', sans-serif;
}

div.pagesection.more-pad { padding: 80px 0px; }

@media only screen and (min-width: 640px) and (max-width: 1024px){

	div.pagesection
	{
		width: 94%;
		padding: 3% 3%;
	}

	div.pagesection.more-pad { padding: 5% 3% } 

}

@media only screen and (max-width: 640px){

	div.pagesection
	{
		width: 90%;
		padding: 6% 5%;
	}

	div.pagesection.more-pad { padding: 8% 5% }

}

div.dark { color: #393939; }

div.light { color: #FFF; }

div.hl
{
    width: 35%;
    max-width: 100px;
    height: 19px;
    margin: 10px auto;
	/*background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;*/
}

div.hl img { width: 100%; }
/*
div.dark div.content div.hl { background-image: url('/web/20170607051810im_/http://www.purestockholm.nu/img/divider_dark.png'); }
div.light div.content div.hl { background-image: url('/web/20170607051810im_/http://www.purestockholm.nu/'); }
*/

/****** LADNING PAGE ******/

/*** TOP BAR ***/
div#topbar
{
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 100;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	background-color: #fff;
	display: block;
	
  	-webkit-box-shadow: rgba(100, 100, 100, 0.5) 0px 0px 10px 0px;
  	-moz-box-shadow: rgba(100, 100, 100, 0.5) 0px 0px 10px 0px;
  	box-shadow: rgba(100, 100, 100, 0.5) 0px 0px 10px 0px;
}

div#header
{
	position: relative;
	width: 94%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 11px 3%;
}

.button_container {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 16px;
  /*top: 16px;
  left: 16%3%;*/
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 700;
  -webkit-transition: opacity .25s ease;
          transition: opacity .25s ease;
}
.button_container:hover {
  opacity: .7;
}
.button_container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
      -ms-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
  background: #393939;
}
.button_container.active .middle {
  opacity: 0;
  background: #393939;
}
.button_container.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
      -ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
          transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #393939;
}
.button_container span {
  background: #393939;
  border: none;
  height: 5px;
  width: 35px;
  position: absolute;
  top: 16px;
  margin-left: 3%;
  margin-right: 3%;
  -webkit-transition: all .35s ease;
          transition: all .35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 27px;
}
.button_container span:nth-of-type(3) {
  top: 38px;
}

.overlay {
  position: fixed;
  background: #fff;
  background-color: rgba(254,254,254,0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-transition: opacity .35s, visibility .35s, height .35s;
          transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}

.overlay.open {
  opacity: 1.0;
  visibility: visible;
  height: 100%;
  z-index: 600;
}

.overlay.open li {
  -webkit-animation: fadeInLeft .5s ease forwards;
          animation: fadeInLeft .5s ease forwards;
}
.overlay.open li:nth-of-type(1) {
  -webkit-animation-delay: .35s;
          animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
          animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
          animation-delay: .50s;
}
.overlay.open li:nth-of-type(5) {
  -webkit-animation-delay: .55s;
          animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
  -webkit-animation-delay: .60s;
          animation-delay: .60s;
}
.overlay.open li:nth-of-type(7) {
  -webkit-animation-delay: .65s;
          animation-delay: .65s;
}
.overlay nav {
  position: relative;
  height: 50%;
  top: 35%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 30px;
  text-align: center;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.overlay ul li {
  display: block;
  height: 14%%;
  height: calc(100% / 7);
  min-height: 40px;
  text-transform: uppercase;
  position: relative;
  opacity: 0;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #393939;
  text-decoration: none;
  font-family: 'Lato';
  /*overflow: hidden;*/
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}
/*
.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  -webkit-transition: .35s;
          transition: .35s;
}*/

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    right: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    right: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

img#logo-small
{
	display: none;
	width: 108px;
	height: 27px;
    position: absolute;
  	z-index: 500;
    left: 50%;
    margin-left: -54px;
    margin-top: 16px;
}

ul#menu
{
	/*text-align: center;*/
	width: 930px;
	margin: 14px auto 0px auto;
    padding-left: 40px;
	list-style: none;
	*zoom: 1;
}

ul#menu li
{
	float: left;
	/*display: inline;*/
	list-style-type: none;
	margin-left: 4px;
	margin-right: 4px;
    margin-top: 5px;
}

ul#menu li a
{
	color: #959595;
	font-family: 'Lato';
	font-size: 15px;
	text-decoration: none;
	padding: 12px 9px;
    text-align:center;
  	display:block;  
}

ul#menu li img.logo
{
	width:138px;
    height:51px;
 	display:block;
    padding: 0;
    margin: -6px 8px 0px 8px;
}

/*ul#menu li a.hover { color: #482d54; }*/
ul#menu li.current a,
ul#menu li a:hover
{
	background-color: #482d54;
	color: #fff;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

a#lang
{
	display: block;
	position: absolute;
	right: 2%;
    top: 40px;
	color: #959595;
    font-family: 'Lato';
    font-size: 15px;
    text-decoration: none;
    padding: 2px;
}

a#lang img { margin-right: 6px;}

/*ul#menu li.current a { font-family: 'a_heavy';}*/

@media only screen and (max-width: 1024px){
	div#topbar
	{
		background-color: rgba(254,254,254,0.94);
	  	-webkit-box-shadow: rgba(100, 100, 100, 0.5) 0px 0px 10px 0px;
	  	-moz-box-shadow: rgba(100, 100, 100, 0.5) 0px 0px 10px 0px;
	  	box-shadow: rgba(100, 100, 100, 0.5) 0px 0px 10px 0px;
	}
	 
	div#header
	{
		height: 40px !important;
		padding: 10px 3% !important;
	}

	.button_container { display: block; }
	img#logo-small { display: block; }


	div#overlay { display: block;}

	div#logo-container
	{
		width: 70px;
		height: 34px;
		position: absolute;
		left: 50%;
		margin-left: -35px;
		top: 16px;
	}

	img#logo-g { opacity: 1.0 !important; }

	ul#menu { display: none; }

	a#lang{
	    top: 0px;
	    right: 0px;
	    padding: 21px 20px;
	    height: 22px;
	    width: 15px;
	    /*z-index: 1500;*/
	}

	a#lang span { display: none; }
}


/*** HOME ***/
div#home
{
	background: transparent url(/web/20170607051810im_/http://www.purestockholm.nu/img/bg_home.jpg) no-repeat;
	background-position: center top;
	background-size: cover;
	padding-top: 100px;

}

a.banner,
img.banner
{
	display: block;
    width: 92%;
    margin: 2% 4% 0% 4%;
}

a#guestlist-link
{
	display: block;
    width: 92%;
    margin: 2% 4% 0 4%;
}

a#guestlist-link img
{
	width: 100%;
}

a#guestlist-link img.mobile { display: none;}

a#fb-link,
a#photos-link
{
	display: block;
	float: left;
	width: 45%;
}

a#fb-link { margin: 2% 1% 0 4%; }
a#photos-link { margin: 2% 4% 0 1%; }

a.banner img,
a#fb-link img,
a#photos-link img
{
	display: block;
	width: 100%;
}
/*
a#fb-link img.mobile,
a#photos-link img.mobile
{
	display: none;
}
*/

div#newsletter
{
	background: transparent url(/web/20170607051810im_/http://www.purestockholm.nu/img/bg_nl.jpg) no-repeat;
	background-position: center top;
	color: #fff;
	padding: 20px 0px;
	display: block;
    width: 92%;
    margin: 2% 4% 0 4%;
}

div#newsletter .content .sub-header
{
	font-size: 2.25em;
	font-family: 'Scheherazade', serif;
	text-align: center;
	line-height: 125%;
  	margin: 14px auto 0px auto;
}

div#newsletter-intro
{
	display: block;
    width: 90%;
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25em;
    font-family: 'Lato';
    line-height: 140%;
}

form#signup-form
{
	width: 90%;
	max-width: 550px;
	margin: 0 auto;
}

input.signup-input
{
	display: block;
	width: 75%;
	float: left;
	margin: 25px auto 0px auto;
	padding: 0px;
	/*border-bottom: 1px solid #fff;*/
	border: none;    
    border-bottom: 2px solid #e3e3e3;
	background: transparent;
	font-family: 'Scheherazade'; 
	font-size: 2em;
	color: #fff;
}

input.signup-input::-webkit-input-placeholder { /* WebKit browsers */
    color:    #ffffff;
   	opacity:  0.5;
}
input.signup-input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #ffffff;
   opacity:  0.5;
}
input.signup-input::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #ffffff;
   opacity:  0.5;
}
input.signup-input:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #ffffff;
   opacity:  0.5;
}

.signup-input:focus
{
    outline: none !important;
    border-bottom: 2px solid #e3e3e3;
    box-shadow: 0 0 0px #fff;
}

a#submit-btn
{
	float: left;
	margin: 6% 0px 0px 5%;
	width: 15%;
	display: inline-block;
	font-family: 'Lato';
	font-size: 1.125em;
	color: #fff;
	text-align: center;
	text-decoration: none;
	padding: 2%;
	border: 1px solid #fff;
	background-color: transparent;
	transition: background-color .25s ease-in-out;
	-moz-transition: background-color .25s ease-in-out;
	-webkit-transition: background-color .25s ease-in-out;

}

a#submit-btn:hover
{
	background-color: rgba(254,254,254,0.15);
}

div#signup-success
{
	display: none;
	width: 100%;
	margin: 30px 0px 20px 0px;
    text-align: center;
    font-family: 'Lato';
    font-size: 2.5em;
}


@media only screen and (max-width: 1024px){

	div#home { padding-top: 60px; }

	a.banner,
	a#guestlist-link,
	div#newsletter
	{
	    width: 100%;
	   	margin: 0;
	}

	a.banner { margin-top: 4%; }

	a#guestlist-link, div#newsletter { margin-top: 4%; }

	a#fb-link,
	a#photos-link
	{
		float: left;
		width: 48%;
		margin: 0;
	}

	a#fb-link { margin: 4% 2% 0px 0px}
	a#photos-link { margin: 4% 0px 0px 2%}


}

@media only screen and (max-width: 640px){

	a#fb-link,
	a#photos-link
	{
		float: none;
		width: 100%;
		margin: 4% 0 0 0;
	}

	a#guestlist-link img.desktop { display: none;}
	a#guestlist-link img.mobile { display: block;}

	/*
	a#fb-link img.desktop,
	a#photos-link img.desktop
	{
		display: none;
	}

	a#fb-link img.mobile,
	a#photos-link img.mobile
	{
		display: block;
	}
	*/

	input.signup-input,
	a#submit-btn
	{
		float: none;
		margin-left: 0;
	}

	input.signup-input { width: 100%; }
	a#submit-btn
	{
		width: 96%;
		padding: 4% 2%;
	}

}


/** GUESTLIST **/

div#guestlist
{
	background: transparent url(/web/20170607051810im_/http://www.purestockholm.nu/img/bg_guestlist.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

div.attendium-signup
{
	width: 100%;
	max-width: 300px;
    margin: 20px auto;
}

div.text-container
{}

div#terms
{
	font-size: 1.1em;
}

@media only screen and (max-width: 1024px){

	div#guestlist
	{
		background-position: 20% bottom;
		background-attachment: scroll;
	}

}

/** TABLE RESERVATION **/

div#table
{
	background: transparent url(/web/20170607051810im_/http://www.purestockholm.nu/img/bg_table.jpg) no-repeat;
	background-position: left top;
}


div#table-alts
{
	margin-top: 40px;
}

div.table-alt
{
	float: left;
	width: 44%;
	margin: 0 3%;
	text-align: left;
	font-size: 1.15em;
	line-height: 140%;
}

div.table-alt img
{
	display: block;
	width: 25%;
	/*max-width: 160px;*/
	/*margin: 0 auto;*/
	float: left;
}

div.table-alt-text
{
	display: block;
	width: 70%;
	margin-left: 5%;
	float: left;
}

div.table-alt-text .sub-header { text-align: left; }

/*


div#table-alts
{
	margin-top: 40px;
}

div.table-alt
{
	float: left;
	width: 44%;
	margin: 0 3%;
	text-align: center;
	font-size: 1.15em;
	line-height: 140%;
}

div.table-alt img
{
	display: block;
	width: 60%;
	max-width: 160px;
	margin: 0 auto;
}

*/

div#table-msg
{
	width: 100%;
	max-width: 840px;
	margin: 60px auto 0 auto;
	font-size: 1.375em;
	line-height: 135%;
	text-align: center;
}

div.table-alt-text a,
div#table-msg a
{
	color: #797979;
}


@media only screen and (max-width: 1024px){
	div.table-alt
	{
		width: 100%;
		margin: 0;
		margin-top: 40px;
	}

	div.table-alt img
	{
		width: 15%;
	}

	div.table-alt-text
	{
		width: 80%;
	}
}

@media only screen and (max-width: 640px){

	div#table-alts
	{
		margin-top: 0px;
	}

	div.table-alt
	{
		float: none;
		width: 100%;
		margin: 0;
		margin-top: 40px;
		text-align: center;
		font-size: 1.15em;
		line-height: 130%;
	}

	div.table-alt img
	{
		float: none;
	    width: 30%;
	    max-width: 150px;
		margin: 0 auto;
	}
	
	div.table-alt-text
	{
		width: 100%;
		margin: 0px;
	}

	div.table-alt-text .sub-header { text-align: center; }
}

/** OFFER **/
div#offer
{
	background: transparent url(/web/20170607051810im_/http://www.purestockholm.nu/img/bg_offer.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

div#offer-alts
{
	width: 100%;
}

a.offer-link
{
	width: 19%;
	margin: 40px 3% 0px 3%;
	float: left;
}

a.offer-link img
{
	width: 100%;
}


@media only screen and (max-width: 1024px){

	div#offer
	{
		background-position: 55% bottom;
		background-attachment: scroll;
	}

}

@media only screen and (max-width: 640px){

	a.offer-link
	{
		width: 50%;
		/*width: 44%;*/
		margin: 10px 0px 0px 0px !important;

		/*margin: 20px 3% 0px 3%;*/
	}

}

div.offer-popup
{
	position: relative;
	background: #FFF;
	padding: 25px 40px;
	width: auto;
	max-width: 500px;
	margin: 20px auto;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

div.offer-group-name
{
	width: 100%;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 1.125em;
	line-height: 110%;	
	text-align: left;
	margin-top: 20px;
}

div.offer-item
{
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 1em;
	line-height: 110%;
	margin-top: 10px;
	position: relative;
}

div.offer-name
{
	width: 75%;
	float: left;
    text-align: left;
}

div.offer-name b
{
	font-weight: 700;
}

div.offer-price
{
	width: 20%;
    position: absolute;
    text-align: right;
    right: 0px;
    bottom: 0px;
}

div.offer-name-full
{

	width: 100%;
    text-align: left;
}

div.offer-name-full span
{
	font-weight: 700;
	margin-right: 10px;
}

/*** ABOUT ***/
div#about
{
	background: transparent url(/web/20170607051810im_/http://www.purestockholm.nu/img/bg_about.jpg) no-repeat;
	background-size: cover;
	background-position: center bottom;
}

div#venue
{
	width: 100%;
	margin-bottom: 30px;
}

div#venue a
{
	width: 23%;
	margin: 30px 1% 0px 1%;
	float: left;
}

div#venue a img
{
	display: block;
	width: 100%;
}

div#inter-msg
{
	font-style: italic;
	margin-top: 10px;
}

@media only screen and (max-width: 640px){

	div#venue
	{
		 margin: 15px 0px 30px 0px;
	}

	div#venue a
	{
		width: 46%;
		margin: 2%;
	}
}

/*** GALLERY ***/

a#insta-link
{
	display: block;
	width: 100%;
	padding: 33px 0px;
	background-color: #29242c;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	font-size: 2em;
	font-family: 'Scheherazade';
}

.insta-break { display: none; }

@media only screen and (max-width: 1024px){
	div#about { background-size: contain; }
}

@media only screen and (max-width: 640px){
	.insta-break { display: block; }
}

div#gallery { width: 100%; }

div#gallery a.insta
{
	display: block;
	float: left;
	width: 25%;
}

div#gallery img
{
	display: block;
	width: 100%;
}

/*div#gallery img#odd { display: none; }

/*
@media only screen and (min-width: 640px) and (max-width: 1024px){

}
*/

@media only screen and (max-width: 640px){
	div#gallery a.insta
	{
		float: left;
		/*width: 33.3%;*/
		width: 50%;
	}

	/*div#gallery img#odd { display: block; }*/
}

/*** BOOK ***/

div#book
{
	background: transparent url(/web/20170607051810im_/http://www.purestockholm.nu/img/bg_book.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

div#booking-text
{
	font-size: 1.25em;
}


div#booking-text a
{
	display: block;
	font-size: 1.5em;
	margin-top: 20px;
	text-decoration: none;
	color: #fff;
}

@media only screen and (max-width: 1024px){

	div#book
	{
		background-position: 55% bottom;
		background-attachment: scroll;
	}

}

/*** CONTACT ***/
div#contact
{
	background: transparent url(/web/20170607051810im_/http://www.purestockholm.nu/img/bg_contact.jpg) no-repeat;
	background-size: cover;
	background-position: center bottom;
}


div#contact-wrapper
{
	margin-top: 60px;
}

div#contact-info
{
	font-family: 'Lato';
	font-size: 1.375em;
	line-height: 140%;
	float: left;
	text-align: right;
    width: 44%;
    margin: 0 3%;
}

div#contact-header
{
	font-size: 1.375em;
	font-weight: 700;
}

div#contact-sub-header
{
	font-size: 1.25em;
	font-weight: 700;
}

div#contact-info b { font-weight: 700; }
div#contact-info a { color: #fff; }

#map {
	float: left;
	text-align: right;
    width: 44%;
    height:400px;
    margin: 0 3%;
    background: transparent;
}
.gm-style-iw * {
    display: block;
    width: 100%;
}
.gm-style-iw h4, .gm-style-iw p {
    margin: 0;
    padding: 0;
}
.gm-style-iw a {
    color: #4272db;
}

#map-img {
	display: none;
    height:350px;
    width:100%;
    background-image: url('/web/20170607051810im_/http://www.purestockholm.nu/img/map.png');
    background-position: center center;
}


@media only screen and (max-width: 1024px){

	#map { display: none; }
	#map-img
	{
		margin-top: 50px;
		display: block;
	}

	div#contact-info
	{
		width: 100%;
		float: none;
		text-align: center;
		margin: 0px;
	}

}

div.content
{
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
}

div.main-content
{
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

h1
{
	font-family: 'Scheherazade', serif;
	text-align: center;
	font-size: 2.5em;
}


div.sub-header
{
	font-family: 'Lato', serif;
	text-align: center;
	font-size: 1.375em;
	line-height: 125%;
  	margin: 14px auto 0px auto;
}

div.text-container
{
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 1.15em;
	line-height: 110%;
	text-align: center;
	width: 80%;
	max-width: 950px;
	margin: 30px auto 0px auto;
}


@media only screen and (min-width: 640px) and (max-width: 1024px){
	div.content h2
	{
		width: 90%;
		max-width:none;
	  	margin-top: 10px;
	}

	div.text-container
	{
		width: 100%;
		margin: 25px auto 0px auto;
	}
}

@media only screen and (max-width: 640px){

	/*div.content h1 { font-size: 2.75em; }*/
/*
	div.content h2
	{
		width: 95%;
		max-width:none;
	  	margin-top: 10px;
	}*/

	div.text-container
	{
		width: 100%;
		margin: 20px auto 0px auto;
	}
}

div#footer
{
	width: 100%;
	padding: 33px 0px;
	background-color: #29242c;
}

div#footer-adress
{
	float: left;
	width: 360px;
	margin-left: 4%;
}

div#footer-copyright
{
	float: right;
	text-align: right;
	width: 360px;
	margin-right: 4%;
}

div#footer-adress,
div#footer-copyright
{
	color: #ffffff;
	font-size: 14px;
	font-family: 'Lato';
}


@media only screen and (max-width: 1024px){

	div#footer-adress,
	div#footer-copyright
	{
		float: none;
		width: 100%;
		margin: 0;
		text-align: center;
	}

	div#footer-copyright { margin-top: 14px; }

}
/*
     FILE ARCHIVED ON 05:18:10 Jun 07, 2017 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 11:57:29 Jan 29, 2018.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/